home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Files
/
Errors
/
VolumeBusyError.h
< prev
next >
Wrap
Text File
|
2000-06-23
|
290b
|
21 lines
// VolumeBusyError.h
#ifndef VolumeBusyError_h
#define VolumeBusyError_h
#ifndef VolumeError_h
#include "VolumeError.h"
#endif
class VolumeBusyError: public VolumeError
{
public:
VolumeBusyError( OSErr error )
: VolumeError( error )
{}
// Used for fBsyErr
};
#endif